home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n10.arc / DE.BAT next >
DOS Batch File  |  1989-05-01  |  443b  |  23 lines

  1. @ECHO OFF
  2. IF "%1"=="" GOTO Err
  3. IF NOT EXIST %1 GOTO err1
  4. COPY %1 D:\TRASH\%1 > NUL
  5. IF NOT EXIST D:\TRASH\%1 GOTO Err2
  6. REM doesn't work with pathname in %%1
  7. SET LDF=%1
  8. DEL %1
  9. GOTO End
  10. :Err
  11. ECHO I need a file specification please ...
  12. GOTO End
  13. :Err1
  14. ECHO %1 not found
  15. GOTO End
  16. :Err2
  17. ECHO ^G
  18. ECHO Deletion halted... please check D:\TRASH
  19. ECHO Press Ctrl-C to exit or any key to permanently delete %1.
  20. PAUSE > NUL
  21. DEL %1
  22. :End
  23.